home *** CD-ROM | disk | FTP | other *** search
Text File | 1999-03-29 | 373 b | 12 lines | [TEXT/ttxt] |
- //
- // Very simple logging script: record start & stop of the layout
- // in file with same name as layout but with an extra '.log' appended.
- // Check JobTimeLogger.m1s for a more extensive example
- //
- proc OnStartLayout
- write it+".log", "Layout " + it + " started at " + Date()
- end proc
-
- proc OnStopLayout
- write it+".log", "Layout " + it + " stopped at " + Date()
- end proc